home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / c-runtime / tests / SubClass1.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-18  |  375 b   |  37 lines

  1. /* -*-objc-*- */
  2.  
  3. /* 
  4.   $Header$
  5.   $Author: dglattin $
  6.   $Date$
  7.   $Log$
  8.  */
  9.  
  10. #ifndef __SUBCLASS1_H
  11. #define __SUBCLASS1_H
  12.  
  13.  
  14. #include  <Object.h>
  15.  
  16. @interface SubClass1 : Object {
  17.  
  18.   char  dumb[ 17 ];
  19. }
  20.  
  21. +initialize;
  22. + newOther;
  23. - hokeyMethod;
  24. - print;
  25. - print:( const char* )aPhrase;
  26.  
  27. + ( int )return12;
  28. - ( int )return15;
  29. - ( int )return24;
  30. - ( int )return33;
  31.  
  32.  
  33. @end
  34.  
  35. #endif
  36.  
  37.